home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 7
/
Apprentice-Release7.iso
/
Source Code
/
C
/
Applications
/
Python 1.4
/
stdwin
/
Gen
/
wsetselection.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-12-21
|
354 b
|
32 lines
|
[
TEXT/CWIE
]
/* Dummy Selection Interface (always fails) */
#include "stdwin.h"
#include "tools.h"
/*ARGSUSED*/
int
wsetselection(win, sel, data, len)
WINDOW *win;
int sel;
char *data;
int len;
{
return 0;
}
/*ARGSUSED*/
char *
wgetselection(sel, len_return)
int sel;
int *len_return;
{
return NULL;
}
/*ARGSUSED*/
void
wresetselection(sel)
int sel;
{
}